home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 2
/
Gold Medal Software Volume 2 (Gold Medal) (1994).iso
/
database
/
cff51b.arj
/
CSET2.MAK
< prev
next >
Wrap
Makefile
|
1993-10-22
|
1KB
|
52 lines
# Makefile for the cff test programs using ibm cset2 for OS2 2.x
# assumes that ../ports/cfport.obj was compiled with cset2 using system linkage
CC = icc /Q+ /B"/map" /Ms
LIB = ..\ports\cfport.obj ..\libs\libcff.lib
# The standard libraries are listed here because my verion of link386 can't
# find libraries based on the LIB environment variable ?????
PORT = ..\ports\cfport.obj ..\libs\libcff.lib g:\toolkt20\os2lib\os2386.lib \
g:\ibmc\lib\dde4sbs.lib g:\ibmc\lib\dde4sbm.lib
all: permtest.exe pushtest.exe hashtest.exe copytest.exe treefile.exe \
filetest.exe misctest.exe blobtest.exe datatest.exe seqtest.exe \
duptest.exe treetest.exe
filetest.exe: filetest.c $(LIB)
$(CC) filetest.c $(PORT)
treefile.exe: treefile.c $(LIB)
$(CC) treefile.c $(PORT)
treetest.exe: treetest.c $(LIB)
$(CC) treetest.c $(PORT)
hashtest.exe: hashtest.c $(LIB)
$(CC) hashtest.c $(PORT)
duptest.exe: duptest.c $(LIB)
$(CC) duptest.c $(PORT)
pushtest.exe: pushtest.c $(LIB)
$(CC) pushtest.c $(PORT)
datatest.exe: datatest.c $(LIB)
$(CC) datatest.c $(PORT)
blobtest.exe: blobtest.c $(LIB)
$(CC) blobtest.c $(PORT)
permtest.exe: permtest.c $(LIB)
$(CC) permtest.c $(PORT)
misctest.exe: misctest.c $(LIB)
$(CC) misctest.c $(PORT)
copytest.exe: copytest.c $(LIB)
$(CC) copytest.c $(PORT)
seqtest.exe: seqtest.c $(LIB)
$(CC) seqtest.c $(PORT)